home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ IE Options 3.xpl < prev    next >
Text File  |  2001-02-05  |  1KB  |  45 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH"="Internet\Internet Explorer\Appearance"
  5. "NAME"="Splash Screen"
  6. "LANGUAGE"="VBScript"
  7. "VERSION"="1.1"
  8. "TEXT 1"="Display Splash Screen while loading"
  9. "DESCRIPTION 1"="Enables or disables the splash screen IE displays during startup."
  10. "DESCRIPTION 2"="NOTE: This option only works in Windows 95 or Windows NT."
  11. "AUTHOR"="Xteq Systems"
  12. "CONTACTURL"="http://www.xteq.com"
  13. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  14. "OSVERSION"="11000"
  15. "COMMENT 1"=" "
  16.  
  17. sV1="HKLM\SOFTWARE\Policies\Microsoft\Internet Explorer\Infodelivery\Restrictions\NoSplash" 'DW
  18.  
  19. SUB Plugin_Initialize  
  20.   i=RegReadValue(sV1)
  21.   if i<>1 then SetUIElement 1,true
  22. END SUB
  23.  
  24. SUB Plugin_Apply(ElementIndex,ElementSubIndex)
  25.  Call Wrt(1,sV1)
  26.  
  27.  Call Restart()
  28. END SUB
  29.  
  30. Sub Wrt(ITM,VAL)
  31.  b=GetUIElement(ITM)
  32.  if b=false then
  33.     Call RegWriteValue(VAL,1,2)
  34.  else
  35.     s=RegReadValue(VAl)
  36.     if IsEmpty(s)=false then
  37.        Call RegDeleteValue(VAL)
  38.     end if
  39.  end if
  40. end sub
  41.  
  42. SUB Plugin_Terminate
  43. END SUB
  44.  
  45.